home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_087 / install / bryce / install.doc < prev    next >
Text File  |  1992-05-06  |  2KB  |  48 lines

  1. The parser code relies on some stuff that you do not have, so it was
  2. omited. This version of install works for drive DF0: only.
  3.  
  4. This code will only make the disk bootable.  Unless a "devs:system-
  5. configuration" file is created it will come up with the standard yucky
  6. colors and font.  Unless a "s:startup-sequence" file does something
  7. (like start a slide show), this will be a very boring disk indeed.
  8.  
  9.  
  10. Without workbench disk files you will not be able to use:
  11.  
  12. RAM: PRT: PAR: SER:, narrator, clipboard, the disk validator,
  13. mathtrans.library, icon.library, translator.library, info.library,
  14. mathieeedoubbas.library, version.library, diskfont.library or any CLI
  15. commands
  16.  
  17. You may be able to snake out of the RAM: restriction with VD0: or VDK: and
  18. the public domain "MOUNT" command that someone (Perry?) had.
  19.  
  20. ------------------------------
  21.  
  22. You do NOT need to require CLI knowledge to execute a script that would copy
  23. workbench files from a user's disk to the product disk.  A file that was
  24. passed 'round a while back called "ICONEXEC" will give a Workbench icon to
  25. a CLI command.    I do not have a copy, but it probably ended up on a FISH
  26. disk.
  27.  
  28. ----- Some technical info ----
  29. The boot record is of this format:
  30.  
  31.     dc.b "DOS",0        ;Signifies DOS type disk
  32.     dc.l 0            ;Checksum goes here
  33.     dc.l 880        ;Unused and/or root key
  34.     ...            ;Code
  35.  
  36. See the V1.1 ROM Kernal Manual Appendix L for the passed args to the
  37. code.  The code in the the install above serves just to kick DOS in
  38. the pants.  Just before that happens is a great time to make all sorts of
  39. clean patches and replacements.  After DOS is up certain things may
  40. get a bit messier to replace.
  41.  
  42. The huge array of zeros is the empty part of the boot record.  This is
  43. fenced off in it's own area of the DATA hunk for easy non-source
  44. modification.  The checksum is computed on the fly, so feel free to
  45. cusomize the code in any way you see fit.
  46.  
  47.  
  48.